home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / The Hacks / Palm Finder 2 / Src / Panes / trashcan.h < prev    next >
Encoding:
Text File  |  2001-06-23  |  329 b   |  17 lines

  1. // trashcan.h
  2.  
  3. #include "icon.h"
  4.  
  5. class trashcan: public icon {
  6. public:
  7.                             trashcan (int x, int y, view* in_superview);
  8.     virtual                ~trashcan ();
  9.     
  10.     void                    fill_up();
  11.     void                    empty();
  12.     Boolean                get_fullness() { return m_full; };
  13.     Boolean                do_cmd_self (int in_eventID, void* io_data);
  14.     
  15. protected:
  16.     Boolean        m_full;
  17. };